home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / blankery / blanker / source / blankers / aswarm / defaults.c < prev    next >
C/C++ Source or Header  |  1993-07-25  |  389b  |  20 lines

  1. #include <exec/types.h>
  2. #include <intuition/intuition.h>
  3.  
  4. #include "/defs.h"
  5.  
  6. struct mPrefObject {
  7.     LONG    Wasps, Bees, Tightness, Speed, Colorcycling, Aimmode;
  8. };
  9.  
  10. VOID defaults( struct bMessage *bMsg )
  11. {
  12.     static struct mPrefObject mPO = { 3L, 16L, 5L, 4L, 0L, 0L };
  13.  
  14.     bMsg->bm_Mod = INVALID_ID;
  15.     bMsg->bm_Dep = 2;
  16.  
  17.     bMsg->bm_Info = "ASwarm Module";
  18.     bMsg->bm_Data = ( UBYTE * )( &mPO );
  19. }
  20.